+++ /dev/null
-# dcmtk default Apache configuration
-
-Alias /dcmtk_wlm /usr/share/dcmtk/www/
-ScriptAlias /dcmtk /usr/lib/dcmtk/cgi-bin/
-
-<Directory "/usr/lib/dcmtk/cgi-bin">
- AllowOverride None
- Options +ExecCGI
-</Directory>
.
Note: This version was compiled with libssl support.
-Package: dcmtk-www
-Architecture: any
-Section: web
-Depends: dcmtk,
- ${misc:Depends},
- ${perl:Depends},
- ${shlibs:Depends}
-Recommends: apache2 | httpd
-Description: OFFIS DICOM toolkit worklist www server application
- DCMTK includes a collection of libraries and applications for examining,
- constructing and converting DICOM image files, handling offline media,
- sending and receiving images over a network connection, as well as
- demonstrative image storage and worklist servers.
- .
- This package contains the DICOM basic worklist management web server
- application. You only need to install this if you want to manage worklist
- entries using a web browser.
-
Package: dcmtk-doc
Architecture: all
Section: doc
+++ /dev/null
-Web interface for the OFFIS DICOM ToolKit in Debian
-===================================================
-
-Please make sure you read the file wwwapp.txt in this directory.
-
-Hint: Apache is configured in this way that you can either
- point your browser to
-
- http://localhost/cgi-bin/dcmtk_wlm/main.pl
-
- or
-
- http://localhost/dcmtk_wlm/main.pl
+++ /dev/null
-/etc/apache2/conf-available
+++ /dev/null
-dcmwlm/docs/wwwapp.txt
+++ /dev/null
-debian/apache.conf etc/dcmtk
-usr/bin/preplock usr/lib/dcmtk/cgi-bin
-usr/bin/readoviw usr/lib/dcmtk/cgi-bin
-usr/bin/readwlst usr/lib/dcmtk/cgi-bin
-usr/bin/writwlst usr/lib/dcmtk/cgi-bin
+++ /dev/null
-usr/lib/dcmtk/cgi-bin usr/lib/cgi-bin/dcmtk_wlm
+++ /dev/null
-#!/bin/sh -e
-# postinst script for dcmtk-www
-
-pkg=dcmtk
-
-apache_install() {
- webserver=apache2
- if [ -d /etc/$webserver/conf-available ] && [ ! -e /etc/$webserver/conf-available/${pkg}.conf ]; then
- ln -s ../../${pkg}/apache.conf /etc/$webserver/conf-available/${pkg}.conf
- # Restart webserver to register configuration for dcmtk if config is considered to be OK
- if ${webserver}ctl configtest 2>/dev/null; then
- if which invoke-rc.d ; then
- invoke-rc.d $webserver reload 3>/dev/null || true
- else
- /etc/init.d/$webserver reload 3>/dev/null || true
- fi
- else
- echo "Your $webserver configuration is broken, so we're not restarting it for you."
- fi
-
- fi
-}
-
-case "$1" in
- configure)
- apache_install
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0
+++ /dev/null
-#!/bin/sh
-# postrm script for dcmtk-www
-
-set -e
-
-pkg=dcmtk
-
-case "$1" in
- purge|remove|upgrade)
- # Restart Apache to register configuration for dcmtk
- if [ "$1" = "purge" ] ; then
- if [ -L /etc/apache2/conf-available/${pkg}.conf ] ; then
- rm -f /etc/apache2/conf-available/${pkg}.conf
- fi
- fi
- if apache2ctl configtest 2>/dev/null; then
- if which invoke-rc.d ; then
- invoke-rc.d apache2 reload 3>/dev/null || true
- else
- /etc/init.d/apache2 reload 3>/dev/null || true
- fi
- else
- echo "Your apache2 configuration is broken, so we're not restarting it for you."
- fi
- ;;
-
- failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0